From 59ac0477285197a702d260a451346a72c84e293a Mon Sep 17 00:00:00 2001 From: Rob Church Date: Tue, 27 Mar 2007 14:34:43 +0000 Subject: [PATCH] Give the username field an identifier so the label is "linked" to it again --- includes/SpecialListusers.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/SpecialListusers.php b/includes/SpecialListusers.php index f0ac1252c8..543d041bf3 100644 --- a/includes/SpecialListusers.php +++ b/includes/SpecialListusers.php @@ -137,7 +137,7 @@ class UsersPager extends AlphabeticPager { # Username field $out .= Xml::label( wfMsg( 'listusersfrom' ), 'offset' ) . ' ' . - Xml::input( 'username', 20, $this->requestedUser ) . ' '; + Xml::input( 'username', 20, $this->requestedUser, array( 'id' => 'offset' ) ) . ' '; if( $this->mLimit ) $out .= Xml::hidden( 'limit', $this->mLimit ); -- 2.20.1